home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 9 / The PC-SIG Library on CD ROM - Ninth Edition.iso / 101_200 / DISK0163 / DISK0163.ZIP / WC.DOC < prev    next >
Text File  |  1983-08-22  |  2KB  |  53 lines

  1.  
  2.      WC (Word Count)
  3.      Command
  4.     
  5.      --------------------------------------------------
  6.      Purpose:  This filter reads text from the standard
  7.                input device, counting the number of 
  8.                characters, words and lines and writes 
  9.                the totals to the standard output device.
  10.      
  11.      Format:   WC [-[L][W][C]]
  12.      
  13.      Type:     Internal  External
  14.                           ***
  15.      
  16.      Remarks:  The -L parameter specifies that the line
  17.                count should be printed.
  18.              
  19.                The -W parameter specifies that the word
  20.                count should be printed.
  21.                   
  22.                The -C parameter specifies that the
  23.                character count should be printed.
  24.             
  25.                Specifying no parameter has the same 
  26.                effect as specifying all of the
  27.                parameters. i.e. WC -lwc
  28.       
  29.      Examples: A>WC <wc.doc -wc
  30.                
  31.                Will output the number of words and
  32.                characters in this file.Or,
  33.                 
  34.                A>DIR C: | WC -l
  35.                 
  36.                Will output the number of files on drive 
  37.                C: plus 7.
  38.  
  39.      
  40.      Notes:    1.  When counting characters, WC ignores
  41.                    the CR (carriage return) and the LF
  42.                    (line feed) characters, so the count
  43.                    may not agree with the file size in
  44.                    the directory.
  45.  
  46.                2.  WC regards a word as any string of
  47.                    characters separated from the rest
  48.                    of the text by an end of line, space
  49.                    or tab character.
  50.              
  51.      
  52.               Written by Michael Hanson
  53.